Polar projects

Chat GPT - Open AI - HTML5 Template - Documentation by "Polar Games"

Created: 16/02/2023
By: Willian Zarpellon
Email: willian@polargames.com.br

Thank you for purchasing my product.

If you have any questions that are beyond the scope of this help file, please feel free to email willian@polargames.com.br. Thanks so much!



A) Create your API Key on the openAI website - TOP

Create an account and generate your API_KEY.
Go to https://platform.openai.com/account/api-keys


img

To store your api key, you have 2 options:

Using a key on the frontend
You can put your API Key in a json file, without the need to use a server.
The advantage is that you don't need a server.
The disadvantage is that your API KEY is exposed, and other people can see it.

Then access the file.json file (html-files/json/config.json) and put your key in the API_KEY field between the quotes


img

Using a key on the backend
The second option, you can use a php file to store your key, so your key will be protected on the server
To use this option, you must set the "use_php_api" field to true in the config.json file.
Note: To use this option you will need a host with PHP 7 or higher


img

After modifying the config.json file, also modify the php file with your key


img

B) Configure your environment - TOP

The CORS (Cross-Origin Resource Sharing) is a security measure that browsers implement to protect users against malicious attacks that can occur when a website attempts to access resources from another site. In other words, CORS is a security policy that browsers use to prevent a site from accessing information from another site without authorization.


When you try to run the index.html file locally and it makes a request to another file such as config.json, the browser may prevent the request from being completed due to the CORS security policy. This is because the browser is trying to protect you against possible malicious attacks.


To solve this problem, it is recommended to run the application on a local server on your machine such as WAMP, XAMPP or similar. Alternatively, you can upload the application to your website using FTP.


After configuring your environment, you can access index.html in your browser and test

Open the index.html file in your browser.


img

C) Customizing the project images - TOP

The animal images are in the thumb folder, in SVG format, you can add images in the format you want, We recommend images with a height of less than 600px, and png or svg. q


img

D) Customizing the characters - TOP

You can configure the behavior of the characters by opening the config.json file




To add a new character:
add a comma in the penultimate json node, and just copy and paste a new node of json characters, and write their names and instructions.



E) Badwords - TOP

In the config.json file you can define if you want to use a filter for badwords.
This filter is great if you want to prevent the user from typing certain words in the chat.
(In config.json: "filter_badwords": true)
You can change list of badwords in json/badwords.json file.


Polar projects - Willian Zarpellon